home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / org / xml / sax / DocumentHandler.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  638 b   |  20 lines

  1. package org.xml.sax;
  2.  
  3. public interface DocumentHandler {
  4.    void setDocumentLocator(Locator var1);
  5.  
  6.    void startDocument() throws SAXException;
  7.  
  8.    void endDocument() throws SAXException;
  9.  
  10.    void startElement(String var1, AttributeList var2) throws SAXException;
  11.  
  12.    void endElement(String var1) throws SAXException;
  13.  
  14.    void characters(char[] var1, int var2, int var3) throws SAXException;
  15.  
  16.    void ignorableWhitespace(char[] var1, int var2, int var3) throws SAXException;
  17.  
  18.    void processingInstruction(String var1, String var2) throws SAXException;
  19. }
  20.